home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / KnowControl / Examples.Controls.dpk < prev    next >
Encoding:
Text File  |  2004-10-22  |  2.8 KB  |  85 lines

  1. package Examples.Controls;
  2.  
  3. {$ALIGN 0}
  4. {$ASSERTIONS ON}
  5. {$BOOLEVAL OFF}
  6. {$DEBUGINFO ON}
  7. {$EXTENDEDSYNTAX ON}
  8. {$IMPORTEDDATA ON}
  9. {$IOCHECKS ON}
  10. {$LOCALSYMBOLS ON}
  11. {$LONGSTRINGS ON}
  12. {$OPENSTRINGS ON}
  13. {$OPTIMIZATION ON}
  14. {$OVERFLOWCHECKS OFF}
  15. {$RANGECHECKS OFF}
  16. {$REFERENCEINFO ON}
  17. {$SAFEDIVIDE OFF}
  18. {$STACKFRAMES OFF}
  19. {$TYPEDADDRESS OFF}
  20. {$VARSTRINGCHECKS ON}
  21. {$WRITEABLECONST OFF}
  22. {$MINENUMSIZE 1}
  23. {$IMAGEBASE $400000}
  24. {$IMPLICITBUILD OFF}
  25.  
  26. requires
  27.   System.Drawing,
  28.   System.Windows.Forms,
  29.   Borland.Delphi;
  30.  
  31. contains
  32.   Examples.WinForms.Knobs in 'Examples.WinForms.Knobs.pas' {Examples.WinForms.Knobs.Knob: System.Windows.Forms.Control};
  33.  
  34. [assembly: AssemblyTitle('')]
  35. [assembly: AssemblyDescription('')]
  36. [assembly: AssemblyConfiguration('')]
  37. [assembly: AssemblyCompany('')]
  38. [assembly: AssemblyProduct('')]
  39. [assembly: AssemblyCopyright('')]
  40. [assembly: AssemblyTrademark('')]
  41. [assembly: AssemblyCulture('')]
  42.  
  43. //
  44. // Version information for an assembly consists of the following four values:
  45. //
  46. //      Major Version
  47. //      Minor Version 
  48. //      Build Number
  49. //      Revision
  50. //
  51. // You can specify all the values or you can default the Revision and Build Numbers 
  52. // by using the '*' as shown below:
  53.  
  54. [assembly: AssemblyVersion('1.0.*')]
  55.  
  56. //
  57. // In order to sign your assembly you must specify a key to use. Refer to the 
  58. // Microsoft .NET Framework documentation for more information on assembly signing.
  59. //
  60. // Use the attributes below to control which key is used for signing. 
  61. //
  62. // Notes: 
  63. //   (*) If no key is specified, the assembly is not signed.
  64. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  65. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  66. //       a key.
  67. //   (*) If the KeyFile and the KeyName values are both specified, the 
  68. //       following processing occurs:
  69. //       (1) If the KeyName can be found in the CSP, that key is used.
  70. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  71. //           in the KeyFile is installed into the CSP and used.
  72. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  73. //       When specifying the KeyFile, the location of the KeyFile should be
  74. //       relative to the project output directory. For example, if your KeyFile is
  75. //       located in the project directory, you would specify the AssemblyKeyFile 
  76. //       attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
  77. //       directory is the project directory (the default).
  78. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  79. //       documentation for more information on this.
  80. //
  81. [assembly: AssemblyDelaySign(false)]
  82. [assembly: AssemblyKeyFile('')]
  83. [assembly: AssemblyKeyName('')]
  84. end.
  85.